home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / system / ntfs / ntfsundelete.exe / {app} / string.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2007-02-06  |  17KB  |  517 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. """A collection of string operations (most are no longer used).
  5.  
  6. Warning: most of the code you see here isn't normally used nowadays.
  7. Beginning with Python 1.6, many of these functions are implemented as
  8. methods on the standard string object. They used to be implemented by
  9. a built-in module called strop, but strop is now obsolete itself.
  10.  
  11. Public module variables:
  12.  
  13. whitespace -- a string containing all characters considered whitespace
  14. lowercase -- a string containing all characters considered lowercase letters
  15. uppercase -- a string containing all characters considered uppercase letters
  16. letters -- a string containing all characters considered letters
  17. digits -- a string containing all characters considered decimal digits
  18. hexdigits -- a string containing all characters considered hexadecimal digits
  19. octdigits -- a string containing all characters considered octal digits
  20. punctuation -- a string containing all characters considered punctuation
  21. printable -- a string containing all characters considered printable
  22.  
  23. """
  24. whitespace = ' \t\n\r\x0b\x0c'
  25. lowercase = 'abcdefghijklmnopqrstuvwxyz'
  26. uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  27. letters = lowercase + uppercase
  28. ascii_lowercase = lowercase
  29. ascii_uppercase = uppercase
  30. ascii_letters = ascii_lowercase + ascii_uppercase
  31. digits = '0123456789'
  32. hexdigits = digits + 'abcdef' + 'ABCDEF'
  33. octdigits = '01234567'
  34. punctuation = '!"#$%&\'()*+,-./:;<=>?@[\\]^_`{|}~'
  35. printable = digits + letters + punctuation + whitespace
  36. l = map(chr, xrange(256))
  37. _idmap = str('').join(l)
  38. del l
  39.  
  40. def capwords(s, sep = None):
  41.     '''capwords(s, [sep]) -> string
  42.  
  43.     Split the argument into words using split, capitalize each
  44.     word using capitalize, and join the capitalized words using
  45.     join. Note that this replaces runs of whitespace characters by
  46.     a single space.
  47.  
  48.     '''
  49.     if not sep:
  50.         pass
  51.     return []([ x.capitalize() for x in s.split(sep) ])
  52.  
  53. _idmapL = None
  54.  
  55. def maketrans(fromstr, tostr):
  56.     '''maketrans(frm, to) -> string
  57.  
  58.     Return a translation table (a string of 256 bytes long)
  59.     suitable for use in string.translate.  The strings frm and to
  60.     must be of the same length.
  61.  
  62.     '''
  63.     global _idmapL
  64.     if len(fromstr) != len(tostr):
  65.         raise ValueError, 'maketrans arguments must have same length'
  66.     
  67.     if not _idmapL:
  68.         _idmapL = map(None, _idmap)
  69.     
  70.     L = _idmapL[:]
  71.     fromstr = map(ord, fromstr)
  72.     for i in range(len(fromstr)):
  73.         L[fromstr[i]] = tostr[i]
  74.     
  75.     return ''.join(L)
  76.  
  77. import re as _re
  78.  
  79. class _multimap:
  80.     '''Helper class for combining multiple mappings.
  81.  
  82.     Used by .{safe_,}substitute() to combine the mapping and keyword
  83.     arguments.
  84.     '''
  85.     
  86.     def __init__(self, primary, secondary):
  87.         self._primary = primary
  88.         self._secondary = secondary
  89.  
  90.     
  91.     def __getitem__(self, key):
  92.         
  93.         try:
  94.             return self._primary[key]
  95.         except KeyError:
  96.             return self._secondary[key]
  97.  
  98.  
  99.  
  100.  
  101. class _TemplateMetaclass(type):
  102.     pattern = '\n    %(delim)s(?:\n      (?P<escaped>%(delim)s) |   # Escape sequence of two delimiters\n      (?P<named>%(id)s)      |   # delimiter and a Python identifier\n      {(?P<braced>%(id)s)}   |   # delimiter and a braced identifier\n      (?P<invalid>)              # Other ill-formed delimiter exprs\n    )\n    '
  103.     
  104.     def __init__(cls, name, bases, dct):
  105.         super(_TemplateMetaclass, cls).__init__(name, bases, dct)
  106.         if 'pattern' in dct:
  107.             pattern = cls.pattern
  108.         else:
  109.             pattern = _TemplateMetaclass.pattern % {
  110.                 'delim': _re.escape(cls.delimiter),
  111.                 'id': cls.idpattern }
  112.         cls.pattern = _re.compile(pattern, _re.IGNORECASE | _re.VERBOSE)
  113.  
  114.  
  115.  
  116. class Template:
  117.     '''A string class for supporting $-substitutions.'''
  118.     __metaclass__ = _TemplateMetaclass
  119.     delimiter = '$'
  120.     idpattern = '[_a-z][_a-z0-9]*'
  121.     
  122.     def __init__(self, template):
  123.         self.template = template
  124.  
  125.     
  126.     def _invalid(self, mo):
  127.         i = mo.start('invalid')
  128.         lines = self.template[:i].splitlines(True)
  129.         if not lines:
  130.             colno = 1
  131.             lineno = 1
  132.         else:
  133.             colno = i - len(''.join(lines[:-1]))
  134.             lineno = len(lines)
  135.         raise ValueError('Invalid placeholder in string: line %d, col %d' % (lineno, colno))
  136.  
  137.     
  138.     def substitute(self, *args, **kws):
  139.         if len(args) > 1:
  140.             raise TypeError('Too many positional arguments')
  141.         
  142.         if not args:
  143.             mapping = kws
  144.         elif kws:
  145.             mapping = _multimap(kws, args[0])
  146.         else:
  147.             mapping = args[0]
  148.         
  149.         def convert(mo):
  150.             if not mo.group('named'):
  151.                 pass
  152.             named = mo.group('braced')
  153.             if named is not None:
  154.                 val = mapping[named]
  155.                 return '%s' % val
  156.             
  157.             if mo.group('escaped') is not None:
  158.                 return self.delimiter
  159.             
  160.             if mo.group('invalid') is not None:
  161.                 self._invalid(mo)
  162.             
  163.             raise ValueError('Unrecognized named group in pattern', self.pattern)
  164.  
  165.         return self.pattern.sub(convert, self.template)
  166.  
  167.     
  168.     def safe_substitute(self, *args, **kws):
  169.         if len(args) > 1:
  170.             raise TypeError('Too many positional arguments')
  171.         
  172.         if not args:
  173.             mapping = kws
  174.         elif kws:
  175.             mapping = _multimap(kws, args[0])
  176.         else:
  177.             mapping = args[0]
  178.         
  179.         def convert(mo):
  180.             named = mo.group('named')
  181.             if named is not None:
  182.                 
  183.                 try:
  184.                     return '%s' % mapping[named]
  185.                 except KeyError:
  186.                     return self.delimiter + named
  187.                 except:
  188.                     None<EXCEPTION MATCH>KeyError
  189.                 
  190.  
  191.             None<EXCEPTION MATCH>KeyError
  192.             braced = mo.group('braced')
  193.             if braced is not None:
  194.                 
  195.                 try:
  196.                     return '%s' % mapping[braced]
  197.                 except KeyError:
  198.                     return self.delimiter + '{' + braced + '}'
  199.                 except:
  200.                     None<EXCEPTION MATCH>KeyError
  201.                 
  202.  
  203.             None<EXCEPTION MATCH>KeyError
  204.             if mo.group('escaped') is not None:
  205.                 return self.delimiter
  206.             
  207.             if mo.group('invalid') is not None:
  208.                 return self.delimiter
  209.             
  210.             raise ValueError('Unrecognized named group in pattern', self.pattern)
  211.  
  212.         return self.pattern.sub(convert, self.template)
  213.  
  214.  
  215. index_error = ValueError
  216. atoi_error = ValueError
  217. atof_error = ValueError
  218. atol_error = ValueError
  219.  
  220. def lower(s):
  221.     '''lower(s) -> string
  222.  
  223.     Return a copy of the string s converted to lowercase.
  224.  
  225.     '''
  226.     return s.lower()
  227.  
  228.  
  229. def upper(s):
  230.     '''upper(s) -> string
  231.  
  232.     Return a copy of the string s converted to uppercase.
  233.  
  234.     '''
  235.     return s.upper()
  236.  
  237.  
  238. def swapcase(s):
  239.     '''swapcase(s) -> string
  240.  
  241.     Return a copy of the string s with upper case characters
  242.     converted to lowercase and vice versa.
  243.  
  244.     '''
  245.     return s.swapcase()
  246.  
  247.  
  248. def strip(s, chars = None):
  249.     '''strip(s [,chars]) -> string
  250.  
  251.     Return a copy of the string s with leading and trailing
  252.     whitespace removed.
  253.     If chars is given and not None, remove characters in chars instead.
  254.     If chars is unicode, S will be converted to unicode before stripping.
  255.  
  256.     '''
  257.     return s.strip(chars)
  258.  
  259.  
  260. def lstrip(s, chars = None):
  261.     '''lstrip(s [,chars]) -> string
  262.  
  263.     Return a copy of the string s with leading whitespace removed.
  264.     If chars is given and not None, remove characters in chars instead.
  265.  
  266.     '''
  267.     return s.lstrip(chars)
  268.  
  269.  
  270. def rstrip(s, chars = None):
  271.     '''rstrip(s [,chars]) -> string
  272.  
  273.     Return a copy of the string s with trailing whitespace removed.
  274.     If chars is given and not None, remove characters in chars instead.
  275.  
  276.     '''
  277.     return s.rstrip(chars)
  278.  
  279.  
  280. def split(s, sep = None, maxsplit = -1):
  281.     '''split(s [,sep [,maxsplit]]) -> list of strings
  282.  
  283.     Return a list of the words in the string s, using sep as the
  284.     delimiter string.  If maxsplit is given, splits at no more than
  285.     maxsplit places (resulting in at most maxsplit+1 words).  If sep
  286.     is not specified or is None, any whitespace string is a separator.
  287.  
  288.     (split and splitfields are synonymous)
  289.  
  290.     '''
  291.     return s.split(sep, maxsplit)
  292.  
  293. splitfields = split
  294.  
  295. def rsplit(s, sep = None, maxsplit = -1):
  296.     '''rsplit(s [,sep [,maxsplit]]) -> list of strings
  297.  
  298.     Return a list of the words in the string s, using sep as the
  299.     delimiter string, starting at the end of the string and working
  300.     to the front.  If maxsplit is given, at most maxsplit splits are
  301.     done. If sep is not specified or is None, any whitespace string
  302.     is a separator.
  303.     '''
  304.     return s.rsplit(sep, maxsplit)
  305.  
  306.  
  307. def join(words, sep = ' '):
  308.     '''join(list [,sep]) -> string
  309.  
  310.     Return a string composed of the words in list, with
  311.     intervening occurrences of sep.  The default separator is a
  312.     single space.
  313.  
  314.     (joinfields and join are synonymous)
  315.  
  316.     '''
  317.     return sep.join(words)
  318.  
  319. joinfields = join
  320.  
  321. def index(s, *args):
  322.     '''index(s, sub [,start [,end]]) -> int
  323.  
  324.     Like find but raises ValueError when the substring is not found.
  325.  
  326.     '''
  327.     return s.index(*args)
  328.  
  329.  
  330. def rindex(s, *args):
  331.     '''rindex(s, sub [,start [,end]]) -> int
  332.  
  333.     Like rfind but raises ValueError when the substring is not found.
  334.  
  335.     '''
  336.     return s.rindex(*args)
  337.  
  338.  
  339. def count(s, *args):
  340.     '''count(s, sub[, start[,end]]) -> int
  341.  
  342.     Return the number of occurrences of substring sub in string
  343.     s[start:end].  Optional arguments start and end are
  344.     interpreted as in slice notation.
  345.  
  346.     '''
  347.     return s.count(*args)
  348.  
  349.  
  350. def find(s, *args):
  351.     '''find(s, sub [,start [,end]]) -> in
  352.  
  353.     Return the lowest index in s where substring sub is found,
  354.     such that sub is contained within s[start,end].  Optional
  355.     arguments start and end are interpreted as in slice notation.
  356.  
  357.     Return -1 on failure.
  358.  
  359.     '''
  360.     return s.find(*args)
  361.  
  362.  
  363. def rfind(s, *args):
  364.     '''rfind(s, sub [,start [,end]]) -> int
  365.  
  366.     Return the highest index in s where substring sub is found,
  367.     such that sub is contained within s[start,end].  Optional
  368.     arguments start and end are interpreted as in slice notation.
  369.  
  370.     Return -1 on failure.
  371.  
  372.     '''
  373.     return s.rfind(*args)
  374.  
  375. _float = float
  376. _int = int
  377. _long = long
  378.  
  379. def atof(s):
  380.     '''atof(s) -> float
  381.  
  382.     Return the floating point number represented by the string s.
  383.  
  384.     '''
  385.     return _float(s)
  386.  
  387.  
  388. def atoi(s, base = 10):
  389.     '''atoi(s [,base]) -> int
  390.  
  391.     Return the integer represented by the string s in the given
  392.     base, which defaults to 10.  The string s must consist of one
  393.     or more digits, possibly preceded by a sign.  If base is 0, it
  394.     is chosen from the leading characters of s, 0 for octal, 0x or
  395.     0X for hexadecimal.  If base is 16, a preceding 0x or 0X is
  396.     accepted.
  397.  
  398.     '''
  399.     return _int(s, base)
  400.  
  401.  
  402. def atol(s, base = 10):
  403.     '''atol(s [,base]) -> long
  404.  
  405.     Return the long integer represented by the string s in the
  406.     given base, which defaults to 10.  The string s must consist
  407.     of one or more digits, possibly preceded by a sign.  If base
  408.     is 0, it is chosen from the leading characters of s, 0 for
  409.     octal, 0x or 0X for hexadecimal.  If base is 16, a preceding
  410.     0x or 0X is accepted.  A trailing L or l is not accepted,
  411.     unless base is 0.
  412.  
  413.     '''
  414.     return _long(s, base)
  415.  
  416.  
  417. def ljust(s, width, *args):
  418.     '''ljust(s, width[, fillchar]) -> string
  419.  
  420.     Return a left-justified version of s, in a field of the
  421.     specified width, padded with spaces as needed.  The string is
  422.     never truncated.  If specified the fillchar is used instead of spaces.
  423.  
  424.     '''
  425.     return s.ljust(width, *args)
  426.  
  427.  
  428. def rjust(s, width, *args):
  429.     '''rjust(s, width[, fillchar]) -> string
  430.  
  431.     Return a right-justified version of s, in a field of the
  432.     specified width, padded with spaces as needed.  The string is
  433.     never truncated.  If specified the fillchar is used instead of spaces.
  434.  
  435.     '''
  436.     return s.rjust(width, *args)
  437.  
  438.  
  439. def center(s, width, *args):
  440.     '''center(s, width[, fillchar]) -> string
  441.  
  442.     Return a center version of s, in a field of the specified
  443.     width. padded with spaces as needed.  The string is never
  444.     truncated.  If specified the fillchar is used instead of spaces.
  445.  
  446.     '''
  447.     return s.center(width, *args)
  448.  
  449.  
  450. def zfill(x, width):
  451.     '''zfill(x, width) -> string
  452.  
  453.     Pad a numeric string x with zeros on the left, to fill a field
  454.     of the specified width.  The string x is never truncated.
  455.  
  456.     '''
  457.     if not isinstance(x, basestring):
  458.         x = repr(x)
  459.     
  460.     return x.zfill(width)
  461.  
  462.  
  463. def expandtabs(s, tabsize = 8):
  464.     '''expandtabs(s [,tabsize]) -> string
  465.  
  466.     Return a copy of the string s with all tab characters replaced
  467.     by the appropriate number of spaces, depending on the current
  468.     column, and the tabsize (default 8).
  469.  
  470.     '''
  471.     return s.expandtabs(tabsize)
  472.  
  473.  
  474. def translate(s, table, deletions = ''):
  475.     '''translate(s,table [,deletions]) -> string
  476.  
  477.     Return a copy of the string s, where all characters occurring
  478.     in the optional argument deletions are removed, and the
  479.     remaining characters have been mapped through the given
  480.     translation table, which must be a string of length 256.  The
  481.     deletions argument is not allowed for Unicode strings.
  482.  
  483.     '''
  484.     if deletions:
  485.         return s.translate(table, deletions)
  486.     else:
  487.         return s.translate(table + s[:0])
  488.  
  489.  
  490. def capitalize(s):
  491.     '''capitalize(s) -> string
  492.  
  493.     Return a copy of the string s with only its first character
  494.     capitalized.
  495.  
  496.     '''
  497.     return s.capitalize()
  498.  
  499.  
  500. def replace(s, old, new, maxsplit = -1):
  501.     '''replace (str, old, new[, maxsplit]) -> string
  502.  
  503.     Return a copy of string str with all occurrences of substring
  504.     old replaced by new. If the optional argument maxsplit is
  505.     given, only the first maxsplit occurrences are replaced.
  506.  
  507.     '''
  508.     return s.replace(old, new, maxsplit)
  509.  
  510.  
  511. try:
  512.     from strop import maketrans, lowercase, uppercase, whitespace
  513.     letters = lowercase + uppercase
  514. except ImportError:
  515.     pass
  516.  
  517.